home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Essentials / C++ A'Link Files / Mar 91 / CPlus.Dev$ 3⁄1⁄91 / 0280-Re Ellipses-Feb91 next >
Text File  |  1991-04-01  |  924b  |  22 lines

  1. Item    1842732                         25-Feb-91        14:31PST
  2.  
  3. From:   TURK                            Turkowski, Ken
  4.  
  5. To:     U0922                           NYU Medical Ctr, Martin Nachbar,HEP
  6.         CPLUS.DEV$                      C++ Interest List--Developers
  7.  
  8. ------------------------------------------------------------------------------
  9.  
  10. Sub:    Re: Ellipses
  11.  
  12. Our group also does cross development between the Mac and the Iris.  I had the
  13. same problems that you had, and the upshot is that SGI does not support
  14. stdarg.h;  they instead use vararg.h.  Try #ifdef sgi, and use varargs for the
  15. Iris, and stdargs for everything else.
  16. ----------------------------------------------------------------------------
  17. The declaration:
  18.     void error(const char *fmt ...)
  19. and the use of <stdarg.h> works splendidly for char and int data; however,
  20. pass a float, and you'll see all sorts of garbage (the SGI will crash).
  21.  
  22.